home *** CD-ROM | disk | FTP | other *** search
- #
- # player_island.tcl
- #
- # State transitions for player island.
- #
-
- proc player_islandwatch_normal {} {
-
- if {[.iskilled] == "true"} {
- .announcestate explode
- }
- }
-
- proc player_islandwatch_explode {} {
-
- # there is currently no animation, so we remove the island
- # in a depth of 1000 meters
- set island_pos [.getposition]
- if {[lindex $island_pos 1] < -1000} {
- .setremoveable true
- }
- }
-
- proc player_islandwatch_cinematic {} {
-
- if {[.iscinematicfinished] == "true"} {
- .announcestate normal
- }
- }
-
-
- # -----------------------------------------------------------------------
-
- # kills all buildings on this island. Called as ActivateCommand of the
- # islands explode state
- proc killallbuildings {} {
-
- set nextvehicle ""
- for {set child [.getfirstvehicle]} {$child != "null"} {set child $nextvehicle} {
-
- # store nextvehicle
- set nextvehicle [.getnextvehicle $child]
-
- # do energy reduction on buildings
- if {[$child.isvehicleclass "concret.technical.static.building"] == "true"} {
-
- # because of negative object energies, reduce at first energy
- # and then 10 points again
- set energy [$child.getenergy]
- set safekill 10
- $child.reduceenergy $energy
- $child.reduceenergy $safekill
-
- # remove artefact from island in this case
- .removechildvehicle $child
- }
- }
- }
-